home *** CD-ROM | disk | FTP | other *** search
/ Game Programming in C++ - Start to Finish / GameProgrammingS.iso / tools_install / doxygen-1.4.4-setup.exe / {app} / examples / Makefile < prev    next >
Encoding:
Makefile  |  2005-07-20  |  3.1 KB  |  110 lines

  1. DOXYGEN   = "H:\doxygen\doxygen_build_1.4.4\doxygen-1.4.4"
  2. TMAKEPATH = "H:\doxygen\doxygen_build_1.4.4\doxygen-1.4.4\tmake\lib\win32-msvc"
  3. TMAKE     = "H:\doxygen\doxygen_build_1.4.4\doxygen-1.4.4\tmake\bin\tmake"
  4. MAKE      = nmake
  5. PERL      = perl
  6. RM        = del /s /q
  7. CP        = copy
  8. VERSION   = 1.4.4
  9. DOXYDIR = ..\bin
  10.  
  11. all: class/html/index.html \
  12.      define/html/index.html \
  13.      enum/html/index.html \
  14.      file/html/index.html \
  15.      func/html/index.html \
  16.      page/html/index.html \
  17.      relates/html/index.html \
  18.      author/html/index.html \
  19.      par/html/index.html \
  20.      overload/html/index.html \
  21.      example/html/index.html \
  22.      include/html/index.html \
  23.      qtstyle/html/index.html \
  24.      jdstyle/html/index.html \
  25.      structcmd/html/index.html \
  26.      autolink/html/index.html \
  27.      restypedef/html/index.html \
  28.      afterdoc/html/index.html \
  29.      template/html/index.html \
  30.      tag/html/index.html \
  31.      group/html/index.html \
  32.      diagrams/html/index.html \
  33.      memgrp/html/index.html
  34.  
  35. clean:
  36.     deltree /y class define enum file 
  37.     deltree /y func page relates author
  38.     deltree /y par overload example include qtstyle 
  39.     deltree /y jdstyle structcmd autolink resdefine 
  40.     deltree /y restypedef afterdoc template tag group diagrams memgrp
  41.  
  42. class/html/index.html: class.h class.cfg
  43.     $(DOXYDIR)\doxygen class.cfg
  44.  
  45. define/html/index.html: define.h define.cfg
  46.     $(DOXYDIR)\doxygen define.cfg
  47.  
  48. enum/html/index.html: enum.h enum.cfg
  49.     $(DOXYDIR)\doxygen enum.cfg
  50.  
  51. file/html/index.html: file.h file.cfg
  52.     $(DOXYDIR)\doxygen file.cfg
  53.  
  54. func/html/index.html: func.h func.cfg
  55.     $(DOXYDIR)\doxygen func.cfg
  56.  
  57. page/html/index.html: page.doc page.cfg
  58.     $(DOXYDIR)\doxygen page.cfg
  59.  
  60. relates/html/index.html: relates.cpp relates.cfg
  61.     $(DOXYDIR)\doxygen relates.cfg
  62.  
  63. author/html/index.html: author.cpp author.cfg
  64.     $(DOXYDIR)\doxygen author.cfg
  65.  
  66. par/html/index.html: par.cpp par.cfg
  67.     $(DOXYDIR)\doxygen par.cfg
  68.  
  69. overload/html/index.html: overload.cpp overload.cfg
  70.     $(DOXYDIR)\doxygen overload.cfg
  71.  
  72. example/html/index.html: example.cpp example_test.cpp example.cfg 
  73.     $(DOXYDIR)\doxygen example.cfg
  74.  
  75. include/html/index.html: include.cpp example_test.cpp include.cfg 
  76.     $(DOXYDIR)\doxygen include.cfg
  77.  
  78. qtstyle/html/index.html: qtstyle.cpp qtstyle.cfg 
  79.     $(DOXYDIR)\doxygen qtstyle.cfg
  80.  
  81. jdstyle/html/index.html: jdstyle.cpp jdstyle.cfg 
  82.     $(DOXYDIR)\doxygen jdstyle.cfg
  83.  
  84. structcmd/html/index.html: structcmd.h structcmd.cfg 
  85.     $(DOXYDIR)\doxygen structcmd.cfg
  86.  
  87. autolink/html/index.html: autolink.cpp autolink.cfg 
  88.     $(DOXYDIR)\doxygen autolink.cfg
  89.  
  90. tag/html/index.html: tag.cpp tag.cfg 
  91.     $(DOXYDIR)\doxygen tag.cfg
  92.  
  93. restypedef/html/index.html: restypedef.cpp restypedef.cfg 
  94.     $(DOXYDIR)\doxygen restypedef.cfg
  95.  
  96. afterdoc/html/index.html: afterdoc.h afterdoc.cfg
  97.     $(DOXYDIR)\doxygen afterdoc.cfg
  98.  
  99. template/html/index.html: templ.cpp templ.cfg
  100.     $(DOXYDIR)\doxygen templ.cfg
  101.  
  102. group/html/index.html: group.cpp group.cfg
  103.     $(DOXYDIR)\doxygen group.cfg
  104.  
  105. memgrp/html/index.html: memgrp.cpp memgrp.cfg
  106.     $(DOXYDIR)\doxygen memgrp.cfg
  107.  
  108. diagrams/html/index.html: diagrams_a.h diagrams_b.h diagrams_c.h diagrams_d.h diagrams_e.h diagrams.cfg
  109.     $(DOXYDIR)\doxygen diagrams.cfg
  110.